home *** CD-ROM | disk | FTP | other *** search
-
-
- NAME
- Open
-
- SYNOPSIS
- Open - Open a file - Requires v37
-
- INPUTS
- "FILE/A,READ/S,WRITE/S"
-
- FUNCTION
- Openes an AmigaDOS Filehandle on a
- certain file. the filehandle must be
- closed with 'Close'.
- Open is necessary for all filehandle
- commands like ReadLn, WriteLn or
- Close.
-
- RESULT
- The BPTR to the created Filehandle
-
- NOTES
- ! Open is highly dangerous! Do not Use it, if !
- ! U do not exactly know what U are doing! !
-
- CLI - only
-
- should compile with SAS-C
-
- BUGS
-
- EXAMPLES
- > set fh `Open T:writetest WRITE`
- > WriteLn $fh This is a test
- > Close $fh
- > Unset fh
- > cat T:writetest
- This is a test
-
- AUTHOR
- Bernd Noll, Brunnenstrasse 55, D-67661 Kaiserslautern
- noll@student.uni-kl.de
-
-
-
-